home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue66
/
Construc
/
Refactor
/
Source
/
fExtractLibPath.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-10-09
|
458 b
|
29 lines
unit fExtractLibPath;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
Tf_ExtractLibPath = class(TForm)
OKBtn: TButton;
CancelBtn: TButton;
Bevel1: TBevel;
Label1: TLabel;
Edit1: TEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
f_ExtractLibPath: Tf_ExtractLibPath;
implementation
{$R *.DFM}
end.